home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 7135 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.0 KB

  1. Path: mail2news.demon.co.uk!genesis.demon.co.uk
  2. From: Lawrence Kirby <fred@genesis.demon.co.uk>
  3. Newsgroups: comp.lang.c
  4. Subject: Re: What's your compiler's answer?
  5. Date: Fri, 16 Feb 96 19:15:37 GMT
  6. Organization: none
  7. Message-ID: <824498137snz@genesis.demon.co.uk>
  8. References: <1996Feb7.140945.28351@cs.rit.edu> <4fq0cq$h9s@hpbblb.bbn.hp.com> <danpop.824432113@rscernix>
  9. Reply-To: fred@genesis.demon.co.uk
  10. X-NNTP-Posting-Host: genesis.demon.co.uk
  11. X-Newsreader: Demon Internet Simple News v1.27
  12. X-Mail2News-Path: genesis.demon.co.uk
  13.  
  14. In article <danpop.824432113@rscernix> danpop@mail.cern.ch "Dan Pop" writes:
  15.  
  16. >j = i++, i++, i++;      /* equivalent to: j = i + 2; i += 3; */
  17.  
  18. This is equivalent to:
  19.  
  20.  (j = i++), i++, i++; 
  21.  
  22. ...
  23.  
  24. >If you have any objections to any of these examples, please read the FAQ
  25. >before expressing them in the newsgroup.
  26.  
  27. K&R 2 page 53 is better for this case!
  28.  
  29. -- 
  30. -----------------------------------------
  31. Lawrence Kirby | fred@genesis.demon.co.uk
  32. Wilts, England | 70734.126@compuserve.com
  33. -----------------------------------------
  34.